home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d879.lha / DiskTest / Source / beginend.h < prev    next >
Text File  |  1993-04-16  |  2KB  |  70 lines

  1. /*------------------------------------------------*
  2.  | File: BEGINEND.h - Include file for BEGINEND.c |
  3.  *------------------------------------------------*/
  4.  
  5. /**
  6.  | #define's
  7.  | - parameters of the button gadgets
  8.  | - parameters of the checkbutton gadget
  9.  | - parameters of the scroller gadget
  10.  | - parameters of the "break window"gadgets
  11.  | - parameters of the output window
  12.  | - parameters of the AutoRequester
  13. **/
  14.  
  15. #define NUM_BUT         5
  16. #define GAD_LEFT        4
  17. #define GAD_TOP       153
  18. #define GAD_WIDTH      61
  19. #define GAD_HEIGHT     25
  20. #define GAD_DX1        72
  21. #define GAD_DX2       347
  22.  
  23. #define CBG_LEFT      330
  24. #define CBG_TOP       161
  25. #define CBG_WIDTH      26
  26. #define CBG_HEIGHT     11
  27.  
  28. #define SCR_TOP         3
  29. #define SCR_LEFT      612
  30. #define SCR_WIDTH      16
  31. #define SCR_HEIGHT    145
  32. #define ARROW_HEIGHT    8
  33.  
  34. #define BKT_XOFFSET    14
  35. #define BKT_YOFFSET    10
  36.  
  37. #define WIN_LEFT        0
  38. #define WIN_TOP         0
  39. #define WIN_WIDTH     640
  40. #define WIN_HEIGHT    185
  41. #define WIN_IDCMP0    IDCMP_REFRESHWINDOW | SCROLLERIDCMP
  42. #define WIN_IDCMP1    ARROWIDCMP | MENUPICK
  43. #define WIN_IDCMP     (WIN_IDCMP0 | WIN_IDCMP1)
  44. #define ZB_LEFT        20
  45. #define ZB_TOP          1
  46. #define ZB_WIDTH      150
  47.  
  48. #define AR_ITX         24
  49. #define AR_ITY         12
  50. #define AR_OKX          6
  51. #define AR_OKY          3
  52. #define AR_WX         320
  53. #define AR_WY          60
  54.  
  55. /**
  56.  | Local global variables:
  57.  | - a pointer to this task Process structure;
  58.  | - storage for this process' pr_WindowPtr.
  59. **/
  60.  
  61. static struct Process *mySelf = NULL;
  62. static APTR save_pr_WindowPtr;
  63.  
  64. /**
  65.  | Local procedure prototypes
  66. **/
  67.  
  68. static void HelpScreen(void);
  69. static void IntuiInit(void);
  70.